select table_name, owner from accessible_tables where (table_type = 'TABLE' or table_type = 'VIEW') and owner like '^creator^' and table_name like '^table^' order by table_name;
select column_name,data_type,nullable,data_length,data_precision,data_scale from accessible_columns where table_name = '^0' and owner = '^creator^' order by column_id;